home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000099_eric672@carolina.rr.comTRASH_Thu May 30 18:53:50 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  111 lines

  1. Article: 13393 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.cs.columbia.edu!peerfeed.news.psi.net!unlisys!news.snafu.de!isdnet!nntp.abs.net!dca6-feed2.news.algx.net!allegiance!newsfeed1.cidera.com!Cidera!cyclone.tampabay.rr.com!news-post.tampabay.rr.com!twister.southeast.rr.com.POSTED!53ab2750!not-for-mail
  3. From: "Eric Almond" <eric672@carolina.rr.comTRASH>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Kermit SSL/TLS Error??
  6. Lines: 91
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 6.00.2600.0000
  10. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
  11. Message-ID: <fZxJ8.43814$6v2.1770330@twister.southeast.rr.com>
  12. Date: Thu, 30 May 2002 22:46:35 GMT
  13. NNTP-Posting-Host: 66.56.121.121
  14. X-Complaints-To: abuse@rr.com
  15. X-Trace: twister.southeast.rr.com 1022798795 66.56.121.121 (Thu, 30 May 2002 18:46:35 EDT)
  16. NNTP-Posting-Date: Thu, 30 May 2002 18:46:35 EDT
  17. Organization: RoadRunner - Carolina
  18. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13393
  19.  
  20. I'm using C-Kermit 8.0.201 on an AIX 4.3.3 box.  I'm getting an error while
  21. trying to negotiate a TLS or SSL connection.  I'm not sure if there is an
  22. issue with how I've got C-Kermit & OpenSSL configured or if its a problem
  23. with WS_FTP Server or something misconfigured between us.  Could it be a
  24. problem with the SSL connection trying to traverse through firewalls??  As
  25. you can see below its sending the file but its not encrypting it as it
  26. should be.  I've tested this same script with on another Secure FTP server
  27. and it works like a champ...but its not a WS_FTP Server and its on the
  28. internal network.  I'm very new to Kermit so any help is appreciated.  Any
  29. ideas??
  30. Thanks in Advance!
  31. Eric
  32.  
  33.  
  34. Connected to ftp.xxxxx.com.
  35. 220-ftp.xxxxx.com X2 WS_FTP Server 3.00 (3623669156)
  36. 220-Welcome to the Xxxxx FTP server.
  37. 220-Authorized users only.
  38. 220-All access is logged and unathorized access will be reported to your
  39. ISP.
  40. 220 ftp.xxxxx.com X2 WS_FTP Server 3.00 (3623669156)
  41. ---> AUTH TLS
  42. 234 SSL enabled and waiting for negotiation
  43. TLS accepted as authentication type
  44. SSL DEBUG ACTIVE
  45. =>START SSL/TLS connect on COMMAND
  46. SSL_handshake:UNKWN  before/connect initialization
  47. SSL_connect:UNKWN  before/connect initialization
  48. SSL_connect:3WCH_A SSLv3 write client hello A
  49. SSL_connect:error in 3RSH_A SSLv3 read server hello A
  50. ftp: SSL/TLS connect COMMAND error: error:00000000:lib(0):func(0):reason(0)
  51. =>DONE SSL/TLS connect on COMMAND
  52. TLS authentication failed
  53. Connected to ftp.xxxxx.com.
  54. 220-ftp.xxxxx.com X2 WS_FTP Server 3.00 (3623669985)
  55. 220-Welcome to the Xxxxx FTP server.
  56. 220-Authorized users only.
  57. 220-All access is logged and unathorized access will be reported to your
  58. ISP.
  59. 220 ftp.xxxxx.com X2 WS_FTP Server 3.00 (3623669985)
  60. ---> AUTH SSL
  61. 234 SSL enabled and waiting for negotiation
  62. SSL accepted as authentication type
  63. SSL DEBUG ACTIVE
  64. =>START SSL/TLS connect on COMMAND
  65. SSL_handshake:UNKWN  before/connect initialization
  66. SSL_connect:UNKWN  before/connect initialization
  67. SSL_connect:3WCH_A SSLv3 write client hello A
  68. SSL_connect:error in 3RSH_A SSLv3 read server hello A
  69. ftp: SSL/TLS connect COMMAND error: error:00000000:lib(0):func(0):reason(0)
  70. =>DONE SSL/TLS connect on COMMAND
  71. SSL authentication failed
  72. Connected to ftp.xxxxx.com.
  73. 220-ftp.xxxxx.com X2 WS_FTP Server 3.00 (3623670719)
  74. 220-Welcome to the Xxxxx FTP server.
  75. 220-Authorized users only.
  76. 220-All access is logged and unathorized access will be reported to your
  77. ISP.
  78. 220 ftp.xxxxx.com X2 WS_FTP Server 3.00 (3623670719)
  79. ---> USER anonymous
  80. 331 Password required
  81. ---> PASS xxx@xxxxx.com
  82. 230 user logged in
  83. ---> REST 0
  84. 350 setting restart marker to 0
  85. ---> SYST
  86. 215 UNIX
  87. Remote system type is UNIX.
  88. ---> TYPE I
  89. 200 Type set to IMAGE.
  90. Default transfer mode is BINARY
  91. ---> MODE S
  92. 200 transfer mode set to Stream
  93. ---> STRU F
  94. 200 structure set to FILE
  95.  Logged in as anonymous (xxx@xxxxx.com)
  96. ---> CWD /upload
  97. 250 CWD successful
  98.  PUT test.txt (text) (1216 bytes)---> TYPE A
  99. 200 Type set to ASCII.
  100. ---> PASV
  101. 227 Entering Passive Mode (66,77,65,190,5,126).
  102. ---> STOR test.txt
  103. 150 Opening ASCII data connection for test.txt
  104. 226 transfer complete
  105. : OK (0.424 sec, 2867 cps)
  106. ---> QUIT
  107. 221 Good-Bye
  108.  
  109.  
  110.  
  111.